Framework for Everything - Where to begin? [Longer post]

Posted by SquaredSoft on Programmers See other posts from Programmers or by SquaredSoft
Published on 2012-09-23T04:27:41Z Indexed on 2012/09/23 9:48 UTC
Read the original article Hit count: 239

Filed under:
|

Back story of this question, feel free to skip down for the specific question


Hello, I've been very interested in the idea of abstract programming the last few years. I've made about 30 attempts at creating a piece of software that is capable of almost anything you throw at it. I've undertook some attempts at this that have taken upwards of a year, while getting close, never releasing it beyond my compiler.

This has been something I've always tried wrapping my head around, and something is always missing. With the title, I'm sure you're assuming, "Yes of course you noob! You can't account for everything!" To which I have to reply, "Why not?"

To give you some background into what I'm talking about, this all started with doing maybe a shade of gray hat SEO software. I found myself constantly having to create similar, but slightly different sets of code. I've gone through as many iterations of way to communicate on http as the universe has particles. "How many times am I going to have to write this multi-threaded class?" is something I found myself asking a lot.

Sure, I could create a class library, and just work with that, but I always felt I could optimize what I had, which often was a large undertaking and typically involved frequent use of the CRTL+A keyboard shortcut, mixed with the delete button.

It dawned on me that it was time to invest in a plugin system. This would allow me to simply add snippets of code. as time went on, and I could subversion stuff out, and distribute small chunks of code, rather than something that encompasses only a specific function or design.

This comes with its own complexity, of course, and by the time I had finished the software scope for this addition, it hit me that I would want to add to everything in the software, not just a new http method, or automation code for a specific website.

Great, we're getting more abstract.

However, the software that I have in my mind comes down to a quite a few questions regarding its execution. I have to have some parameters to what I am going to do. After writing what the perfect software would do in my mind, I came up with this as a list of requirements:

  • Should be able to use networking
  • A "Macro" or "Expression system" which would allow people to do something like :

=First(=ParseToList(=GetUrl("http://www.google.com?q=helloworld!"), Template.Google))

  • Multithreaded
  • Able to add UI elements through some type of XML -- People can make their own addons etc.
  • Can use third party API through the plugins, such as Microsoft CRM, Exchange, etc.

This would allow the software to essentially be used for everything. Really, any task you wish to automate, in a simple way.

Making the UI was as also extremely hard. How do you do all of this? Its very difficult.


So my question:

With so many attempts at this, I'm out of ideas how to successfully complete this. I have a very specific idea in my mind, but I keep failing to execute it. I'm a self taught programmer. I've been doing it for years, and work professionally in it, but I've never encountered something that would be as complex and in-depth as a system which essentially does everything.

Where would you start? What are the best practices for design? How can I avoid constantly having to go back and optimize my software. What can I do to generalize this and draw everything out to completion. These are things I struggle with.

P.s., I'm using c# as my main language. I feel like in this example, I might be hitting the outer limit of the language, although, I don't know if that is the case, or if I'm just a bad programmer.

Thanks for your time.

© Programmers or respective owner

Related posts about c#

Related posts about software